home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 1999 #2
/
Amiga Plus CD - 1999 - No. 2.iso
/
System-Boost
/
Grafik
/
AmiCAD
/
ARexx_english
/
New.AmiCAD
< prev
next >
Wrap
Text File
|
1998-06-17
|
404b
|
23 lines
/* This file gives you an example for the recommended structure
for a script file called by AmiCAD */
options results
signal on error /* for error handling */
signal on syntax
/* Your program must be placed there */
exit
/* Handling errors */
syntax:
erreur=RC
'MESSAGE("Syntax error"+CHR(10)+"in line 'SIGL'"+CHR(10)+"'errortext(erreur)'")'
exit
error:
'MESSAGE("Error in line 'SIGL'")'
exit